Skip to content

chore(k8s): Update cluster, coredns and cert-manager in stage #329

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kubernetes/prod/us-west-2/coredns/coredns.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
- args:
- -conf
- /etc/coredns/Corefile
image: 602401143452.dkr.ecr.us-west-2.amazonaws.com/eks/coredns:v1.9.3-eksbuild.3
image: 602401143452.dkr.ecr.us-west-2.amazonaws.com/eks/coredns:v1.11.4-eksbuild.2
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
- kube-proxy
- --v=2
- --config=/var/lib/kube-proxy-config/config
image: 602401143452.dkr.ecr.us-west-2.amazonaws.com/eks/kube-proxy:v1.24.10-eksbuild.2
image: 602401143452.dkr.ecr.us-west-2.amazonaws.com/eks/kube-proxy:v1.32.0-eksbuild.2
imagePullPolicy: IfNotPresent
name: kube-proxy
resources:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/stage/us-west-2/coredns/coredns.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
- args:
- -conf
- /etc/coredns/Corefile
image: 602401143452.dkr.ecr.us-west-2.amazonaws.com/eks/coredns:v1.9.3-eksbuild.3
image: 602401143452.dkr.ecr.us-west-2.amazonaws.com/eks/coredns:v1.11.4-eksbuild.2
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 5
Expand Down
4 changes: 2 additions & 2 deletions terraform/prod/us-west-2/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module "eks" {
version = "17.20.0"

cluster_name = local.cluster_name
cluster_version = "1.29"
cluster_version = "1.32"
subnets = module.vpc.private_subnets
vpc_id = module.vpc.vpc_id
tags = local.tags
Expand Down Expand Up @@ -137,7 +137,7 @@ resource "helm_release" "cert-manager" {
name = "cert-manager"
repository = "https://charts.jetstack.io"
chart = "cert-manager"
version = "v1.14.3"
version = "v1.17.2"
namespace = "cert-manager"

set {
Expand Down
4 changes: 2 additions & 2 deletions terraform/stage/us-west-2/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module "eks" {
version = "17.20.0"

cluster_name = local.cluster_name
cluster_version = "1.29"
cluster_version = "1.32"
subnets = module.vpc.private_subnets
vpc_id = module.vpc.vpc_id
tags = local.tags
Expand Down Expand Up @@ -135,7 +135,7 @@ resource "helm_release" "cert-manager" {
name = "cert-manager"
repository = "https://charts.jetstack.io"
chart = "cert-manager"
version = "v1.14.3"
version = "v1.17.2"
namespace = "cert-manager"

set {
Expand Down